home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Pascal Super Library
/
Pascal Super Library (CW International)(1997).bin
/
DELPHI32
/
GRIDS
/
STRGRDEX
/
STRGRDEX.ZIP
/
Demo.dpr
next >
Wrap
Text File
|
1996-10-22
|
221b
|
15 lines
program Demo;
uses
Forms,
Unit1 in 'Unit1.pas' {frmMain},
strgrdex in 'strgrdex.pas';
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TfrmMain, frmMain);
Application.Run;
end.